home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 259 / SOMC Family Forum 259 - Disc 1.iso / Somc.dir / 00008_Script_eastereggs < prev    next >
Text File  |  1998-12-15  |  438b  |  26 lines

  1. on exitFrame
  2.   go to the frame
  3. end
  4.  
  5. on keyDown
  6.   set WHICHKEY to the keyPressed
  7.   if (the commandDown) and (the optionDown) then
  8.     beep
  9.     beep
  10.     
  11.     case (WHICHKEY) of
  12.       "B" : play "BOSCH"
  13.       "H" : play "HUNT"
  14.       "N" : play "NESTOR"        
  15.       "P" : play "PARKER"
  16.       "S" : play "SANM"        
  17.       "T" : play "TECSON"
  18.       "W" : play "WIEMER"
  19.              
  20.     end case
  21.   end if
  22.   
  23. end
  24.  
  25.  
  26.